home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEBodyReadText.au3 < prev    next >
Text File  |  2007-09-08  |  380b  |  9 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser with the basic example, read the body Text
  3. ;                (the content with all HTML tags removed) and display it in a MsgBox
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IE_Example ("basic")
  8. $sText = _IEBodyReadText ($oIE)
  9. MsgBox(0, "Body Text", $sText)